home *** CD-ROM | disk | FTP | other *** search
/ World Wide Web Encyclopedia / World Wide Web Encyclopedia CD.iso / pc / wwwe / logs / uuencode.log < prev   
Encoding:
Text File  |  1995-10-18  |  1.6 KB  |  46 lines

  1. >man uuencode
  2. UUENCODE(1)                  BSD Reference Manual                  UUENCODE(1)
  3.  
  4. NAME
  5.      uuencode, uudecode - encode/decode a binary file
  6.  
  7. SYNOPSIS
  8.      uuencode [file] name
  9.      uudecode [file ...]
  10.  
  11. DESCRIPTION
  12.      Uuencode and uudecode are used to transmit binary files over transmission
  13.      mediums that do not support other than simple ASCII data.
  14.  
  15.      Uuencode reads file (or by default the standard input) and writes an en-
  16.      coded version to the standard output.  The encoding uses only printing
  17.      ASCII characters and includes the mode of the file and the operand name
  18.      for use by uudecode.
  19.  
  20.      Uudecode transforms uuencoded files (or by default, the standard input)
  21.      into the original form.  The resulting file is named name and will have
  22.      the mode of the original file except that setuid and execute bits are not
  23.      retained.  Uudecode ignores any leading and trailing lines.
  24.  
  25. EXAMPLES
  26.      The following example packages up a source tree, compresses it, uuencodes
  27.      it and mails it to a user on another system.  When uudecode is run on the
  28.      target system, the file ``src_tree.tar.Z'' will be created which may then
  29.      be uncompressed and extracted into the original tree.
  30.  
  31.            tar cf - src_tree | compress |
  32.            uuencode src_tree.tar.Z | mail sys1!sys2!user
  33.  
  34. SEE ALSO
  35.      compress(1),  mail(1),  uucp(1),  uuencode(5),  format(5)
  36.  
  37. BUGS
  38.      The encoded form of the file is expanded by 35% (3 bytes become 4 plus
  39.      control information).
  40.  
  41. HISTORY
  42.      The uuencode command appeared in 4.0BSD.
  43.  
  44. 4th Berkeley Distribution        June 6, 1993                                1
  45.  
  46.